net/http.http2ClientConn.goAway (field)

10 uses

	net/http (current package)
		h2_bundle.go#L7400: 	goAway          *http2GoAwayFrame             // if non-nil, the GoAwayFrame we received
		h2_bundle.go#L7937: 	old := cc.goAway
		h2_bundle.go#L7938: 	cc.goAway = f
		h2_bundle.go#L7945: 		cc.goAway.ErrCode = old.ErrCode
		h2_bundle.go#L8025: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		h2_bundle.go#L8061: 	st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay &&
		h2_bundle.go#L9212: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9278: 	if cc.goAway != nil && http2isEOFOrNetReadError(err) {
		h2_bundle.go#L9280: 			LastStreamID: cc.goAway.LastStreamID,
		h2_bundle.go#L9281: 			ErrCode:      cc.goAway.ErrCode,